KeysNormalized Property

Task Parallel System.Threading

Gets whether order keys are normalized.

Namespace:  System.Collections.Concurrent
Assembly:  System.Threading (in System.Threading.dll)

Syntax

Visual Basic (Declaration)
Public Property KeysNormalized As Boolean
C#
public bool KeysNormalized { get; private set; }

Remarks

If KeysNormalized returns true, all order keys are distinct integers in the range [0 .. numberOfElements-1]. If the property returns false, order keys must still be dictinct, but only their relative order is considered, not their absolute values.

See Also